{% extends "global/Page.html" %} {% load otree static %} {% block title %} Payment Summary {% endblock %} {% block content %}
Thank you for your participation! Please send a private message to Experimenter 2 once you are ready to leave and you will be assigned to an individual breakout room for the ID check. You may leave after the ID check has been completed.

Your final payoff is {{player.final_payoff|c}}, which includes a {{ Constants.show_up|c }} participation fee, your payment from Stage 3 and your payment from the Questionnaire (Part 1). This will be paid via PayID (within 1 working day). Below is a more detailed breakdown of the results.


Stage 2

{% if player.participant.vars.IsLeader %}
  • You have been selected as the leader for your group.
  • {% else %}
  • One of your group members has been selected as the leader for your group.
  • {% endif %}
  • When x = 1.5, the leader chose to allocate {{ player.participant.vars.leader_risky1 }}% in the risky option and {{ leader_safe1 }}% in the safe option.
  • When x = 2, the leader chose to allocate {{ player.participant.vars.leader_risky2 }}% in the risky option and {{ leader_safe2 }}% in the safe option.
  • When x = 2.5, the leader chose to allocate {{ player.participant.vars.leader_risky3 }}% in the risky option and {{ leader_safe3 }}% in the safe option.

  • Stage 3 (individual earnings)

  • You completed {{player.participant.vars.solved_tables}} tables.
  • The investment decision selected to be paid was x = {% if player.participant.vars.random_num_x == 1 %} 1.5 {% elif player.participant.vars.random_num_x == 2 %} 2 {% else %} 2.5 {% endif %} and you allocated {{ player.participant.vars.ind_invest_chosen }}% to the risky option.
  • The outcome of the coin flip was {% if player.participant.vars.coin_outcome == 1 %} heads. {% elif player.participant.vars.coin_outcome == 2 and player.participant.vars.random_num_x == 1 %} tails and your risky investment will be multipled by 1.5. {% elif player.participant.vars.coin_outcome == 2 and player.participant.vars.random_num_x == 2 %} tails and your risky investment will be multipled by 2. {% elif player.participant.vars.coin_outcome == 2 and player.participant.vars.random_num_x == 3 %} tails and your risky investment will be multipled by 2.5. {% endif %}
  • Your individual payment from Stage 3 is {{ player.participant.vars.task_payoff|c }}.

  • Stage 3 (charity's earnings)

  • You completed {{ player.participant.vars.solved_additional_tables }} additional tables.
  • You and your group members completed a total of {{ player.participant.vars.group_tables }} additional tables, earning {{ player.participant.vars.group_income|c }} for the charity.
  • The computer has randomly chosen the following charity for your group: {{ player.charity_name }}.
  • The leader's investment decision selected to be paid was x = {{ player.participant.vars.leader_x }}.
  • The outcome of the coin flip was {% if player.participant.vars.leader_coin == 1 %} heads. {% else %} tails and the leader's risky investment will be multiplied by {{ player.participant.vars.leader_x }}. {% endif %}
  • The charity will receive {{ player.participant.vars.donation|c }} in donations.
  • We will make the contributions to the charity on your group's behalf. You will receive a copy of the receipt as confirmation of your group's donation.

  • Questionnaire (Part 1)

  • The computer has randomly determined that you will be paid according to allocation # {{ subsession.random_allocation }}.
  • {% if player.id_in_group == 1 %}
  • In addition, the computer has randomly determined that your allocation decision will be implemented.
  • {% else %}
  • In addition, the computer has randomly determined that your matched partner's allocation decision will be implemented.
  • {% endif %}
  • You receive an allocation of {{ player.svo_allocation }} units, which converts to {{ player.svo_payoff|c }}.

  • {% endblock %}